SELECT items.id, items.title,items.title_eng, items.state, items.hideprice, items.anons, items.price2rub AS price, images.path , 0 + IF(items.title LIKE "%фигур%", 40, 0) + IF(items.anons LIKE "%фигур%", 5, 0) + IF(items.keywords LIKE "%фигур%", 20, 0) + IF(items.comment LIKE "%фигур%", 1, 0) + IF(items.title LIKE "%костяна%", 40, 0) + IF(items.anons LIKE "%костяна%", 5, 0) + IF(items.keywords LIKE "%костяна%", 20, 0) + IF(items.comment LIKE "%костяна%", 1, 0) as relevance FROM `items` INNER JOIN `images` ON images.id_item=items.id WHERE ((false OR (items.title LIKE "%фигур%" OR items.anons LIKE "%фигур%" OR items.keywords LIKE "%фигур%" OR items.comment LIKE "% фигур %") OR (items.title LIKE "%костяна%" OR items.anons LIKE "%костяна%" OR items.keywords LIKE "%костяна%" OR items.comment LIKE "% костяна %")) ) AND images.visible=0 AND items.visible=1 AND items.price1_ck=0 AND items.state IN (1,2,3,4,7,9) GROUP BY items.id ORDER BY items.price2rub DESC LIMIT 0,32